@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background-color 0.3s;
}

header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.logo {
    font-size: 2.5em;
    color: #333;
    cursor: pointer;
    font-weight: 700;
}

.logo span {
    color: #f03d66;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: #fff;
    background-color: #f03d66;
    transform: scale(1.1);
}

.about {
    margin-top: 80px;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f9f9f9, #e1e7f3);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.box, .boxx {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    text-align: justify;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #666;
    border-left: 6px solid #f03d66;
}

.box:hover, .boxx:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #f9f9f9;
}

.box h2, .boxx h2 {
    font-size: 2.2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box p, .box ul, .boxx p, .boxx ul {
    font-size: 1.1em;
    line-height: 1.8;
}

.box ul, .boxx ul {
    list-style: none;
    padding: 0;
}

.box ul li, .boxx ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.box ul li b {
    color: #f03d66;
}

.btn-group {
    margin-top: 20px;
    text-align: center;
}

.btn-group a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    background: #f03d66;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(240, 61, 102, 0.2);
}

.btn-group a:hover {
    background: #fff;
    color: #f03d66;
    border: 2px solid #f03d66;
    transform: translateY(-3px);
}

footer {
    background: rgb(198, 162, 168);
    color: rgb(0, 0, 0);
    padding: 5px;
    text-align: center;
    font-size: 1rem;
    margin-top: 5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer .footer-content p {
    margin: 5px 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 30px;
        padding: 10px;
    }

    .box, .boxx {
        padding: 15px;
    }

    .logo {
        font-size: 2em;
    }

    .navigation a {
        font-size: 1em;
    }

    .box h2, .boxx h2 {
        font-size: 1.8em;
    }

    .box p, .box ul, .boxx p, .boxx ul {
        font-size: 1em;
    }
}
